home *** CD-ROM | disk | FTP | other *** search
/ Pesquisa Dirigida / Pesquisa Dirigida.iso / JOGOS / frogger.swf / scripts / DefineSprite_247 / frame_20 / DoAction.as
Text File  |  2005-01-07  |  472b  |  22 lines

  1. w1_x = getProperty("/wasser13", _X) + "50";
  2. w2_x = getProperty("/wasser13", _X) - "50";
  3. frog_x = getProperty("/frosch", _X);
  4. frog_y = getProperty("/frosch", _Y);
  5. if(frog_y < "62" and "48" < frog_y and frog_x < w1_x and w2_x < frog_x)
  6. {
  7.    tellTarget("/frosch")
  8.    {
  9.       gotoAndStop("dead");
  10.       play();
  11.    }
  12.    tellTarget("/steuerung")
  13.    {
  14.       gotoAndStop("aus");
  15.       play();
  16.    }
  17.    tellTarget("/restzeit")
  18.    {
  19.       gotoAndPlay(1);
  20.    }
  21. }
  22.